home *** CD-ROM | disk | FTP | other *** search
/ Programming a Multiplayer FPS in DirectX / Programming a Multiplayer FPS in DirectX (Companion CD).iso / Paint Shop Pro / PSP900enTR.exe / Data1.cab / _7877884DBA2A4060B7B026D04139DDA9 < prev    next >
Encoding:
Text File  |  2004-08-16  |  1.1 KB  |  41 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Jasc Software, Inc.',
  6.         'Copyright': u'Copyright (c) 2004 Jasc Software, Inc.  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro 9',
  9.         'Host Version': u'9.00'
  10.         }
  11.  
  12. def Preset_Sculpture():
  13.     return {
  14.         'Ambience': -70, 
  15.         'Angle': 315, 
  16.         'Color': (255,0,0), 
  17.         'Depth': 60, 
  18.         'Elevation': 40, 
  19.         'Intensity': 75, 
  20.         'PatternName': u'Canvas', 
  21.         'Shininess': 10, 
  22.         'Size': 100, 
  23.         'Smoothness': 10, 
  24.         'Category': u'All', 
  25.         'GeneralSettings': {
  26.             'ExecutionMode': App.Constants.ExecutionMode.Default, 
  27.             'DialogPlacement': {
  28.                 'ShowMaximized': False, 
  29.                 'Rect': ((321,202), 996, 1095)
  30.                 }, 
  31.             'PreviewVisible': True, 
  32.             'AutoProof': False, 
  33.             'AutoActionMode': App.Constants.AutoActionMode.Match
  34.             }
  35.         }
  36.  
  37. def Do(Environment):
  38.     # Sculpture
  39.     App.Do( Environment, 'Sculpture',         Preset_Sculpture())
  40.  
  41.